Description
Used to symbolize point features using one of the predefined symbol types: circle, square, cross, triangle, star, X, or diamond.
Diagram
Overview
|
SIMPLEMARKERSYMBOL
Used to symbolize point features using one of the predefined symbol types: circle, square, cross, triangle, star, X, or diamond.
|
angle optional Restriction of xs:double
|
|
color optional xs:string
|
|
outline optional xs:string
|
|
outlinetype optional Restriction of xs:string
|
|
outlinewidth optional Restriction of xs:int
|
|
width optional Restriction of xs:double
|
|
type optional Restriction of xs:string
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
angle | Restriction of xs:double | optional | 0.0 | | |
color | xs:string | optional | | | |
outline | xs:string | optional | | | |
outlinetype | Restriction of xs:string | optional | solid | | |
outlinewidth | Restriction of xs:int | optional | 0 | | |
width | Restriction of xs:double | optional | 3 | | |
type | Restriction of xs:string | optional | circle | | |
Examples
Source
<xs:element name="SIMPLEMARKERSYMBOL" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Used to symbolize point features using one of the predefined symbol types: circle, square, cross, triangle, star, X, or diamond.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute default="0" ref="angle"></xs:attribute>
<xs:attribute ref="color" default="0,0,0"></xs:attribute>
<xs:attribute ref="outline" use="optional" default="0,0,0" />
<xs:attribute ref="outlinetype" />
<xs:attribute ref="outlinewidth" />
<xs:attribute name="width" default="3">
<xs:simpleType>
<xs:restriction base="xs:double">
<xs:minInclusive value="0.0" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="type" default="circle">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="circle" />
<xs:enumeration value="square" />
<xs:enumeration value="cross" />
<xs:enumeration value="triangle" />
<xs:enumeration value="star" />
<xs:enumeration value="x" />
<xs:enumeration value="diamond" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
|
See Also